home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 1992 August
/
info-mac-1992.iso
/
Source
/
Pascal
/
Talk
/
Talk Source
/
My Libraries
/
MyAssertions.unit
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-04-20
|
268 b
|
18 lines
|
[
TEXT/PJMM
]
unit MyAssertions;
{ This program was written by Peter N Lewis, Mar 1992 in THINK Pascal 4.0.1 }
interface
procedure Assert (b: boolean);
implementation
procedure Assert (b: boolean);
begin
if not b then begin
DebugStr('Assert Failed');
end;
end;
end.